home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / nivb / nwtest.frm < prev    next >
Text File  |  1995-05-07  |  5KB  |  218 lines

  1. VERSION 2.00
  2. Begin Form Main 
  3.    Caption         =   "NetWare API Test"
  4.    ClientHeight    =   2010
  5.    ClientLeft      =   2355
  6.    ClientTop       =   2025
  7.    ClientWidth     =   6810
  8.    Height          =   2700
  9.    Left            =   2295
  10.    LinkMode        =   1  'Source
  11.    LinkTopic       =   "Form1"
  12.    ScaleHeight     =   2010
  13.    ScaleWidth      =   6810
  14.    Top             =   1395
  15.    Width           =   6930
  16.    Begin Label Label1 
  17.       Caption         =   "This application tests several NetWare APIs, using the NetWare Interface for Visual Basic."
  18.       Height          =   492
  19.       Left            =   1440
  20.       TabIndex        =   0
  21.       Top             =   120
  22.       Width           =   4092
  23.    End
  24.    Begin Menu ExitMenu 
  25.       Caption         =   "E&xit!"
  26.    End
  27.    Begin Menu TestMenu 
  28.       Caption         =   "&Test"
  29.       Begin Menu VersionItem 
  30.          Caption         =   "DLL &Versions"
  31.       End
  32.       Begin Menu AcctItem 
  33.          Caption         =   "&Accounting"
  34.       End
  35.       Begin Menu AFPItem 
  36.          Caption         =   "AFP"
  37.       End
  38.       Begin Menu BindItem 
  39.          Caption         =   "&Bindery"
  40.       End
  41.       Begin Menu ConnItem 
  42.          Caption         =   "&Connection"
  43.       End
  44.       Begin Menu DiagItem 
  45.          Caption         =   "&Diagnostics"
  46.       End
  47.       Begin Menu DirDirItem 
  48.          Caption         =   "Directory (Directory Info)"
  49.       End
  50.       Begin Menu DirDriveInfo 
  51.          Caption         =   "Directory (Drive Info)"
  52.       End
  53.       Begin Menu DirVolItem 
  54.          Caption         =   "Directory (Volume Info)"
  55.       End
  56.       Begin Menu FileItem 
  57.          Caption         =   "&File"
  58.       End
  59.       Begin Menu ServerItem 
  60.          Caption         =   "File Server Env"
  61.       End
  62.       Begin Menu Server2xItem 
  63.          Caption         =   "File Server Env v2.x"
  64.       End
  65.       Begin Menu MiscItem 
  66.          Caption         =   "Miscellaneous"
  67.       End
  68.       Begin Menu MsgItem 
  69.          Caption         =   "&Message"
  70.       End
  71.       Begin Menu NameSpItem 
  72.          Caption         =   "&Name Space"
  73.       End
  74.       Begin Menu PrintItem 
  75.          Caption         =   "&Print"
  76.       End
  77.       Begin Menu PServItem 
  78.          Caption         =   "Print Server"
  79.       End
  80.       Begin Menu QueueItem 
  81.          Caption         =   "&Queue"
  82.       End
  83.       Begin Menu SAPItem 
  84.          Caption         =   "&SAP"
  85.       End
  86.       Begin Menu SyncItem 
  87.          Caption         =   "Synchronization"
  88.       End
  89.       Begin Menu TTSItem 
  90.          Caption         =   "&TTS"
  91.       End
  92.       Begin Menu WrkstnItem 
  93.          Caption         =   "&Workstation Env"
  94.       End
  95.    End
  96.    Begin Menu HelpMenu 
  97.       Caption         =   "&Help"
  98.       Begin Menu IndexItem 
  99.          Caption         =   "&There Is No Help"
  100.       End
  101.       Begin Menu AboutItem 
  102.          Caption         =   "&About..."
  103.       End
  104.    End
  105. End
  106.  
  107. Sub AboutItem_Click ()
  108.     AboutForm.Show 1
  109. End Sub
  110.  
  111. Sub AcctItem_Click ()
  112.     AcctForm.Show
  113. End Sub
  114.  
  115. Sub AFPItem_Click ()
  116.     AFPForm.Show
  117. End Sub
  118.  
  119. Sub BindItem_Click ()
  120.     Main.MousePointer = 11
  121.     BindForm.Show
  122. End Sub
  123.  
  124. Sub ConnItem_Click ()
  125.     ConnForm.Show
  126. End Sub
  127.  
  128. Sub DiagItem_Click ()
  129.     DiagForm.Show
  130. End Sub
  131.  
  132. Sub DirDirItem_Click ()
  133.     SelectDirForm.Show
  134. End Sub
  135.  
  136. Sub DirDriveInfo_Click ()
  137.     DirDriveForm.Show
  138. End Sub
  139.  
  140. Sub DirVolItem_Click ()
  141.     DirVolForm.Show
  142. End Sub
  143.  
  144. Sub ExitMenu_Click ()
  145.     End
  146. End Sub
  147.  
  148. Sub FileItem_Click ()
  149.     currentForm = FILE_FORM
  150.     SelectFileForm.Show
  151. End Sub
  152.  
  153. Sub Form_Load ()
  154.     originalPrefConnID% = GetPreferredConnectionID()
  155. End Sub
  156.  
  157. Sub IndexItem_Click ()
  158.     NoHelpForm.Show 1
  159. End Sub
  160.  
  161. Sub MiscItem_Click ()
  162.     MiscForm.Show
  163. End Sub
  164.  
  165. Sub MsgItem_Click ()
  166.     MessForm.Show
  167. End Sub
  168.  
  169. Sub NameSpItem_Click ()
  170.     NameSpaceForm.Show
  171. End Sub
  172.  
  173. Sub PrintItem_Click ()
  174.     PrntForm.Show
  175. End Sub
  176.  
  177. Sub PrtQueItem_Click ()
  178. End Sub
  179.  
  180. Sub PServItem_Click ()
  181.     PrintServerForm.Show
  182. End Sub
  183.  
  184. Sub QueueItem_Click ()
  185.     QueueForm.Show
  186. End Sub
  187.  
  188. Sub SAPItem_Click ()
  189.     SAPForm.Show
  190. End Sub
  191.  
  192. Sub Server2xItem_Click ()
  193.     FSE2xForm.Show
  194. End Sub
  195.  
  196. Sub ServerItem_Click ()
  197.     FSEForm.Show
  198. End Sub
  199.  
  200. Sub SyncItem_Click ()
  201.     SyncForm.Show
  202. End Sub
  203.  
  204. Sub TTSItem_Click ()
  205.     TTSForm.Show
  206. End Sub
  207.  
  208. Sub VersionItem_Click ()
  209.     Main.MousePointer = 11
  210.     DLLVersionForm.Show
  211.     Main.MousePointer = 0
  212. End Sub
  213.  
  214. Sub WrkstnItem_Click ()
  215.     WSEForm.Show
  216. End Sub
  217.  
  218.